/* Inter — self-hosted (variable woff2, latin + latin-ext) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 28rem),
    linear-gradient(180deg, #f7f7f5 0%, #f3f3f1 100%);
}

.site-shell {
  position: relative;
}

.site-header {
  background-color: transparent;
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background-color: rgba(251, 251, 250, 0.92);
  border-bottom-color: rgba(229, 229, 225, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo-image {
  display: block;
  height: 2.4rem;
  width: auto;
}

.action-dark,
.action-light,
.action-ghost,
.action-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.72rem 1.15rem;
  border-radius: 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.action-dark:hover,
.action-light:hover,
.action-ghost:hover,
.action-brand:hover {
  transform: translateY(-1px);
}

.action-dark {
  background: #111111;
  color: #ffffff;
}

.action-dark:hover {
  background: #1c1c1c;
}

.action-light {
  border: 1px solid #e0e0dc;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
}

.action-light:hover {
  border-color: #cbcbc6;
}

.action-ghost {
  border: 1px solid #ddddda;
  background: rgba(255, 255, 255, 0.72);
  color: #222222;
}

.action-brand {
  background: #4d83f6;
  color: #ffffff;
}

.action-brand:hover {
  background: #4376df;
}

/* CTA sticky mobile : barre fixée en bas, visible uniquement sur mobile */
.mobile-devis-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid #e6e6e2;
}

.mobile-devis-cta {
  display: flex;
  width: 100%;
  box-shadow: 0 10px 30px -12px rgba(17, 17, 17, 0.45);
}

@media (min-width: 1024px) {
  .mobile-devis-bar {
    display: none;
  }
}

/* Réserve de l'espace en bas pour ne pas masquer le contenu sous la barre CTA */
@media (max-width: 1023.98px) {
  body {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
}

.card-hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  transition: box-shadow 300ms ease, transform 300ms ease;
}
.card-hover:hover {
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.10);
}

.action-light-darkmode {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.icon-inline,
.footer-icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.chip,
.inline-chip,
.toolbar-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e3df;
  border-radius: 999px;
  background: #fafaf9;
  color: #696969;
  white-space: nowrap;
}

.chip {
  min-height: 2.2rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid #e3e3df;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.03);
  color: #5f5f5f;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  border-color: #d1d1ce;
}

.hero-badge-icon {
  width: 0.92rem;
  height: 0.92rem;
  color: #b0b0ac;
  stroke-width: 2;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.founder-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4d83f6, transparent);
  box-shadow: 0 0 10px 1px rgba(77, 131, 246, 0.5);
}

.status-chip {
  gap: 0.5rem;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
}

.chip-inner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #2a2a2a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.status-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0.18rem rgba(34, 197, 94, 0.16);
}

.status-dot::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(34, 197, 94, 0.32);
  content: "";
  animation: status-pulse 1.8s ease-out infinite;
}

@keyframes status-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  70% {
    transform: scale(2.25);
    opacity: 0;
  }

  100% {
    transform: scale(2.25);
    opacity: 0;
  }
}

/* Surligneur (stabilo) sur le mot mis en avant dans le hero */
.hero-highlight-stabilo {
  display: inline;
  padding: 0 0.07em;
  margin: 0 -0.05em;
  border-radius: 0.05em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  /* Bleu marque #4d83f6  :  effet stabilo lisible sur fond sombre */
  background-image: linear-gradient(
    94deg,
    rgba(77, 131, 246, 0.48) 0%,
    rgba(77, 131, 246, 0.68) 45%,
    rgba(77, 131, 246, 0.52) 100%
  );
  background-repeat: no-repeat;
  background-position: 0 82%;
  background-size: 0% 0.4em;
  animation: heroStabiloReveal 0.65s cubic-bezier(0.33, 1, 0.68, 1) 0.45s forwards;
}

@keyframes heroStabiloReveal {
  to {
    background-size: 100% 0.4em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-highlight-stabilo {
    animation: none;
    background-size: 100% 0.4em;
  }
}

/* Stabilo sur titres  :  déclenché au scroll (.is-stabilo-visible via JS) */
/* Défaut : fond clair + texte noir (lisible, pas trop saturé) */
.section-highlight-stabilo {
  display: inline;
  padding: 0 0.07em;
  margin: 0 -0.05em;
  border-radius: 0.05em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(
    94deg,
    rgba(77, 131, 246, 0.16) 0%,
    rgba(77, 131, 246, 0.26) 48%,
    rgba(77, 131, 246, 0.18) 100%
  );
  background-repeat: no-repeat;
  background-position: 0 82%;
  background-size: 0% 0.4em;
}

/* Texte blanc sur fond sombre : stabilo plus marqué (comme le hero) */
.process-section .section-highlight-stabilo,
.contact-cta-panel .section-highlight-stabilo,
.bg-deep .section-title.text-white .section-highlight-stabilo,
.blog-bridge-title .section-highlight-stabilo,
.bg-brand .section-title.text-white .section-highlight-stabilo {
  background-image: linear-gradient(
    94deg,
    rgba(77, 131, 246, 0.48) 0%,
    rgba(77, 131, 246, 0.68) 45%,
    rgba(77, 131, 246, 0.52) 100%
  );
}

.section-highlight-stabilo.is-stabilo-visible {
  animation: sectionStabiloDraw 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes sectionStabiloDraw {
  to {
    background-size: 100% 0.4em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-highlight-stabilo.is-stabilo-visible {
    animation: none;
    background-size: 100% 0.4em;
  }
}

/* ── Scroll-highlight quote ─────────────────────────────── */
[data-scroll-highlight] .sh-word {
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.35s ease;
}

[data-scroll-highlight] .sh-word.is-lit {
  color: rgba(255, 255, 255, 1);
}

[data-scroll-highlight] .sh-word.is-accent {
  color: rgba(132, 169, 255, 0.15);
  transition: color 0.35s ease;
}

[data-scroll-highlight] .sh-word.is-accent.is-lit {
  color: rgba(132, 169, 255, 1);
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-highlight] .sh-word {
    color: rgba(255, 255, 255, 1) !important;
    transition: none;
  }
  [data-scroll-highlight] .sh-word.is-accent {
    color: rgba(132, 169, 255, 1) !important;
    transition: none;
  }
}

@keyframes hero-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.inline-chip,
.toolbar-pill {
  min-height: 2rem;
  padding: 0.38rem 0.72rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-panel {
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.02);
}

/* Hero sombre (même direction visuelle que index-hero-appear, sans vidéo) */
.hero-panel-dark {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background: #06070c;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.45);
  min-height: min(82vh, 52rem);
}

@media (min-width: 1280px) {
  .hero-panel-dark {
    min-height: min(86vh, 58rem);
  }
}

@media (min-width: 1536px) {
  .hero-panel-dark {
    min-height: min(88vh, 64rem);
  }
}

.hero-panel-dark .hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: min(82vh, 52rem);
  justify-content: center;
  align-items: center;
  background: none;
}

@media (min-width: 1280px) {
  .hero-panel-dark .hero-grid {
    min-height: min(86vh, 58rem);
  }
}

@media (min-width: 1536px) {
  .hero-panel-dark .hero-grid {
    min-height: min(88vh, 64rem);
  }
}

.hero-dark-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 75% at 50% -5%, rgba(77, 131, 246, 0.32), transparent 58%),
    radial-gradient(ellipse 55% 45% at 85% 55%, rgba(255, 255, 255, 0.07), transparent 52%),
    linear-gradient(165deg, #141722 0%, #0b0c10 48%, #06070c 100%);
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(4, 6, 12, 0.15) 0%,
    rgba(4, 6, 12, 0.45) 45%,
    rgba(4, 6, 12, 0.92) 100%
  );
}

/* Chapô sous le titre (hero sombre) : contraste lisible même si les utilitaires Tailwind sont neutralisés */
.hero-panel-dark .hero-sublead {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 759.98px) {
  .hero-panel-dark,
  .hero-panel-dark .hero-grid {
    min-height: min(78vh, 48rem);
  }
}

/* Page contact : un seul bloc hero, hauteur au contenu (pas plein viewport) */
.hero-panel-dark.contact-hero-panel,
.hero-panel-dark.contact-hero-panel .hero-grid {
  min-height: 0;
}

.hero-panel-dark.contact-hero-panel .hero-grid {
  flex-grow: 0;
  justify-content: center;
  align-items: stretch;
}

/* Champs contact (fond sombre) : sélection et autofill cohérents */
.contact-field::selection {
  background: rgba(77, 131, 246, 0.38);
}

.contact-field:-webkit-autofill,
.contact-field:-webkit-autofill:hover,
.contact-field:-webkit-autofill:focus {
  -webkit-text-fill-color: #f5f5f5;
  caret-color: #f5f5f5;
  -webkit-box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.09) inset;
  box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.09) inset;
  transition: background-color 99999s ease-out 0s;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Articles blog (barre de lecture #reading-progress) : blocs visibles sans animation au scroll */
body:has(#reading-progress) [data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
  will-change: auto;
}

.hero-grid {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.2)),
    linear-gradient(90deg, rgba(18, 18, 18, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(18, 18, 18, 0.025) 1px, transparent 1px);
  background-size:
    auto,
    56px 56px,
    56px 56px;
}

.hero-divider {
  height: 1px;
  background: #ebebe7;
}

.hero-preview {
  position: relative;
}

.hero-preview.is-visible .mock-app {
  animation: hero-drift 9s ease-in-out infinite;
}

.preview-noise {
  height: 4.5rem;
  background-image: radial-gradient(rgba(17, 17, 17, 0.08) 0.6px, transparent 0.6px);
  background-size: 10px 10px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
}

.mock-app,
.feature-card,
.transformation-card,
.offer-card,
.deliverables-panel,
.deliverable-card,
.faq-item,
.section-shell,
.insight-panel {
  border: 1px solid #e6e6e2;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.03), 0 16px 40px rgba(18, 18, 18, 0.05);
}

.metric-card,
.chart-card,
.table-card,
.feature-card,
.transformation-card,
.offer-card,
.faq-item {
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease;
}

.metric-card:hover,
.chart-card:hover,
.table-card:hover,
.feature-card:hover,
.transformation-card:hover,
.offer-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(18, 18, 18, 0.08);
}

.mock-app {
  overflow: hidden;
  border-radius: 1.5rem;
}

.mock-toolbar,
.mock-body,
.metric-row,
.content-grid,
.feature-top,
.mini-buttons,
.mini-metrics,
.insight-header,
.insight-layout,
.table-row,
.card-top,
.mock-dots,
.nav-stack {
  display: flex;
}

.mock-toolbar {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ecece8;
  background: #fcfcfb;
}

.mock-dots span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #d5d5d2;
}

.mock-dots span:nth-child(1) {
  background: #f0b3a6;
}

.mock-dots span:nth-child(2) {
  background: #ead58c;
}

.mock-dots span:nth-child(3) {
  background: #b5d5b5;
}

.mock-body {
  min-height: 32rem;
}

.mock-sidebar {
  width: 13.5rem;
  padding: 1rem;
  border-right: 1px solid #ecece8;
  background: #f8f8f7;
}

.search-bar {
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  background: #ffffff;
  color: #989896;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-stack {
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}

.side-item {
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  color: #656565;
  font-size: 0.95rem;
  font-weight: 700;
}

.side-item.active {
  background: #ececea;
  color: #111111;
}

.mock-main {
  flex: 1;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 250, 248, 0.92)),
    linear-gradient(90deg, rgba(18, 18, 18, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(18, 18, 18, 0.02) 1px, transparent 1px);
  background-size:
    auto,
    28px 28px,
    28px 28px;
}

.metric-row {
  gap: 1rem;
}

.metric-card,
.chart-card,
.table-card,
.mini-window,
.mini-chart-card {
  border: 1px solid #ebebe7;
  background: #ffffff;
}

.metric-card {
  flex: 1;
  padding: 1.15rem;
  border-radius: 1.2rem;
}

.metric-label,
.metric-note,
.eyebrow,
.stat-label,
.offer-tier {
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.metric-label,
.metric-note,
.stat-label {
  color: #7a7a7a;
}

.metric-value,
.stat-value {
  margin-top: 0.4rem;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.metric-note.brand {
  color: #4d83f6;
}

.content-grid {
  gap: 1rem;
  margin-top: 1rem;
}

.chart-card {
  flex: 1.1;
  padding: 1.1rem;
  border-radius: 1.2rem;
}

.table-card {
  width: 23.5rem;
  padding: 1.1rem;
  border-radius: 1.2rem;
}

.card-top {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mini-tabs {
  display: flex;
  gap: 0.4rem;
}

.mini-tabs span,
.table-link {
  padding: 0.42rem 0.65rem;
  border: 1px solid #e7e7e3;
  border-radius: 999px;
  background: #fafaf9;
  color: #787878;
  font-size: 0.76rem;
  font-weight: 800;
}

.chart-surface {
  position: relative;
  height: 19rem;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff, #fafaf9);
}

.chart-grid,
.mini-chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.05) 1px, transparent 1px);
  background-size: 100% 3.8rem, 4rem 100%;
}

.chart-line,
.mini-chart-line {
  position: absolute;
  width: 78%;
  height: 3px;
  border-radius: 999px;
  transform-origin: left center;
}

.line-blue {
  left: 8%;
  bottom: 36%;
  background: #4d83f6;
  transform: rotate(-4deg);
  box-shadow:
    7rem -1.5rem 0 #4d83f6,
    14rem -0.4rem 0 #4d83f6,
    21rem -2.1rem 0 #4d83f6;
}

.line-dark {
  left: 8%;
  bottom: 26%;
  background: #171717;
  transform: rotate(2deg);
  box-shadow:
    7rem 0.7rem 0 #171717,
    14rem -0.7rem 0 #171717,
    21rem 1.2rem 0 #171717;
}

.line-gray {
  left: 8%;
  bottom: 18%;
  background: #c9c9c7;
  transform: rotate(-1deg);
  box-shadow:
    7rem -0.5rem 0 #c9c9c7,
    14rem -1rem 0 #c9c9c7,
    21rem 0.5rem 0 #c9c9c7;
}

.chart-tooltip {
  position: absolute;
  right: 8%;
  bottom: 16%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: #141414;
  color: #ffffff;
  box-shadow: 0 22px 36px rgba(18, 18, 18, 0.18);
}

.tooltip-title {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.tooltip-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.tooltip-row+.tooltip-row {
  margin-top: 0.35rem;
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
}

.dot.blue {
  background: #4d83f6;
}

.dot.dark {
  background: #ffffff;
}

.table-stack {
  margin-top: 1rem;
}

.table-row {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid #efefeb;
}

.page-name {
  font-size: 0.95rem;
  font-weight: 800;
}

.page-score {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: #f3f3f2;
  color: #717171;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-score.good {
  background: rgba(77, 131, 246, 0.12);
  color: #3f6cce;
}

/* Même langage que .identity-pill (hero) : pilule, bordure légère, fond discret, léger flou */
.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: rgba(251, 251, 250, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
  color: #121212;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker-dark {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.section-copy {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  color: #767676;
  font-size: 1rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .section-copy {
    font-size: 1.05rem;
    line-height: 1.7;
  }
}

.feature-card,
.transformation-card,
.offer-card {
  border-radius: 2rem;
  padding: 1.5rem;
}

.feature-top {
  gap: 1rem;
  align-items: flex-start;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card h3,
.transformation-card h3,
.offer-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.22;
}

.feature-card p,
.transformation-card p,
.offer-card p,
.faq-item p,
.list-card p {
  margin-top: 0.75rem;
  color: #666666;
  line-height: 1.85;
}

.transformation-top,
.transform-row {
  display: flex;
}

.transformation-top {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.transformation-type {
  color: #787878;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.transformation-surface {
  margin-top: 1.35rem;
  padding: 0.35rem 1rem;
  border: 1px solid #ebebe7;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #fafaf9, #f5f5f3);
}

.transform-row {
  align-items: flex-start;
  gap: 0.95rem;
  padding: 0.95rem 0;
}

.transform-row+.transform-row {
  position: relative;
}

.transform-row+.transform-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e7e7e3 20%, #e7e7e3 80%, transparent);
}

.transform-row span {
  min-width: 4.4rem;
  color: #8a8a8a;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.transform-row strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.transform-row.after strong {
  color: #111111;
}



.mini-surface {
  margin-top: 1.4rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(248, 248, 247, 0.95), rgba(243, 243, 241, 0.95)),
    linear-gradient(90deg, rgba(18, 18, 18, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(18, 18, 18, 0.02) 1px, transparent 1px);
  background-size:
    auto,
    28px 28px,
    28px 28px;
}

.mini-window {
  padding: 1rem;
  border-radius: 1rem;
}

.mini-bar,
.mini-title,
.mini-line,
.insight-address,
.insight-lines span,
.shot-card,
.shot-grid span {
  display: block;
  border-radius: 999px;
  background: #e8e8e5;
}

.mini-bar {
  height: 0.55rem;
  width: 100%;
}

.mini-title {
  height: 1rem;
  margin-top: 1rem;
}

.mini-line {
  height: 0.7rem;
  margin-top: 0.7rem;
}

.mini-buttons {
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.mini-buttons span,
.insight-buttons span {
  width: 8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  border: 1px solid #e3e3df;
  background: #fafaf9;
}

.mini-buttons span.dark,
.insight-buttons span.dark {
  border-color: #111111;
  background: #111111;
}

.mini-metrics {
  gap: 0.75rem;
}

.mini-metrics div {
  flex: 1;
  padding: 1rem;
  border: 1px solid #ebebe7;
  border-radius: 1rem;
  background: #ffffff;
}

.mini-metrics span {
  display: block;
  color: #878787;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mini-metrics strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mini-chart-card {
  position: relative;
  height: 13rem;
  overflow: hidden;
  border-radius: 1rem;
}

.mini-chart-line.line-a {
  left: 10%;
  bottom: 52%;
  background: #4d83f6;
  transform: rotate(-8deg);
  box-shadow:
    4.2rem -0.6rem 0 #4d83f6,
    8.4rem -1.7rem 0 #4d83f6;
}

.mini-chart-line.line-b {
  left: 10%;
  bottom: 35%;
  background: #111111;
  transform: rotate(4deg);
  box-shadow:
    4.2rem 0.5rem 0 #111111,
    8.4rem -0.1rem 0 #111111;
}

.mini-chart-line.line-c {
  left: 10%;
  bottom: 23%;
  background: #ccccca;
  transform: rotate(-2deg);
  box-shadow:
    4.2rem -0.1rem 0 #ccccca,
    8.4rem 0.8rem 0 #ccccca;
}

.section-shell,
.insight-panel {
  border-radius: 2rem;
}

.section-shell {
  padding: 2rem;
}

.list-card {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.list-card+.list-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ecece8 10%, #ecece8 90%, transparent);
}

.list-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #f3f3f2;
  font-weight: 800;
  color: #111111;
}

.list-card strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.insight-panel {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(248, 248, 247, 0.96), rgba(244, 244, 242, 0.96)),
    linear-gradient(90deg, rgba(18, 18, 18, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(18, 18, 18, 0.02) 1px, transparent 1px);
  background-size:
    auto,
    32px 32px,
    32px 32px;
}

.insight-browser {
  overflow: hidden;
  border: 1px solid #e9e9e5;
  border-radius: 1.5rem;
  background: #ffffff;
}

.insight-header {
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #ecece8;
}

.insight-address {
  flex: 1;
  height: 0.9rem;
}

.insight-layout {
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem;
}

.insight-copy,
.insight-shot {
  flex: 1;
}

.eyebrow {
  color: #4d83f6;
}

.insight-title {
  margin-top: 0.9rem;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.insight-lines {
  margin-top: 1rem;
}

.insight-lines span {
  height: 0.75rem;
}

.insight-lines span+span {
  margin-top: 0.7rem;
}

.insight-lines span:nth-child(1) {
  width: 92%;
}

.insight-lines span:nth-child(2) {
  width: 84%;
}

.insight-lines span:nth-child(3) {
  width: 68%;
}

.insight-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.insight-shot {
  padding: 1rem;
  border-radius: 1.2rem;
  background: #f6f6f4;
}

.shot-card {
  height: 13rem;
  border-radius: 1.2rem;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.shot-grid span {
  height: 4.5rem;
  border-radius: 1rem;
}

.offer-card ul {
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.35rem;
  border-top: 1px solid #ecece8;
  color: #666666;
  font-weight: 700;
}

.offer-card li::before {
  position: absolute;
  top: 1.22rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #4d83f6;
  content: "";
}

.offer-card.highlighted {
  border-color: #dfe7fb;
  background: linear-gradient(180deg, rgba(247, 249, 255, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 0 0 1px rgba(77, 131, 246, 0.1), 0 24px 64px -12px rgba(77, 131, 246, 0.12);
}

.stat-value {
  margin-top: 0.5rem;
}

.cta-panel {
  background:
    radial-gradient(circle at top right, rgba(77, 131, 246, 0.18), transparent 28rem),
    radial-gradient(circle at bottom left, rgba(77, 131, 246, 0.1), transparent 20rem),
    #111111;
  background-size: 140% 140%;
  animation: cta-glow 14s ease-in-out infinite alternate;
  box-shadow: 0 30px 80px rgba(18, 18, 18, 0.14);
}

@keyframes cta-glow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
}

.contact-actions .action-light,
.contact-actions .action-brand {
  width: 100%;
  justify-content: center;
  min-height: 3.2rem;
  padding-inline: 1rem;
  font-size: 0.98rem;
}

/* ── Service Cards ── */
.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e6e6e2;
  border-radius: 2rem;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.03), 0 16px 40px rgba(18, 18, 18, 0.05);
  overflow: hidden;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(18, 18, 18, 0.08);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.25rem;
}

/* La colonne texte occupe toute la largeur restante → « Détails » se cale au bord droit du header */
.service-card-header > .service-card-text {
  flex: 1 1 0%;
  min-width: 0;
}

.service-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  background: rgba(77, 131, 246, 0.08);
  border: 1px solid rgba(77, 131, 246, 0.15);
  flex-shrink: 0;
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #121212;
}

.service-card-desc {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #767676;
}

/* Bloc texte carte : titre + chevron sur une ligne, description puis repliable SEO en dessous */
.service-card-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  column-gap: 0.5rem;
  row-gap: 0.35rem;
  align-items: start;
  min-width: 0;
  contain: layout;
}

.service-card-text .service-card-seo {
  display: contents;
}

.service-card-text > .service-card-title {
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}

.service-card-text .service-card-seo summary {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  box-sizing: border-box;
  /* Hauteur / largeur stables : évite le saut quand le chevron tourne ou quand le panneau s’ouvre */
  min-height: calc(1.15rem * 1.22);
  min-width: 4.35rem;
  margin-top: 0.1rem;
  margin-left: 0;
  justify-content: center;
  align-items: center;
  padding-inline: 0.45rem;
}

.service-card-text > .service-card-desc {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
}

.service-card-text .service-card-seo-body {
  grid-column: 1 / -1;
  grid-row: 3;
}

/* Texte SEO / enrichi : libellé discret + chevron (aligné sur le titre) */
.service-card-seo-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  color: inherit;
}

.service-card-seo summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  padding: 0.2rem 0.35rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  color: #9a9a9a;
  border-radius: 0.35rem;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.service-card-seo summary:hover {
  color: #7a7a7a;
  background-color: rgba(18, 18, 18, 0.04);
}

.service-card-seo summary:focus {
  outline: none;
}

.service-card-seo summary:focus-visible {
  outline: 2px solid rgba(77, 131, 246, 0.45);
  outline-offset: 2px;
  border-radius: 2px;
}

.service-card-seo summary::-webkit-details-marker {
  display: none;
}

.service-card-seo summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.28rem;
  height: 0.28rem;
  margin: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform-origin: 50% 50%;
  /* Pas de translateY ici : évite le glitch vertical ouvert / fermé */
  transform: rotate(-45deg);
  opacity: 0.72;
  transition: transform 0.2s ease;
}

.service-card-seo[open] summary::after {
  transform: rotate(45deg);
}

.service-card-seo-body {
  margin-top: 0.6rem;
  padding-top: 0.65rem;
  border-top: 1px solid #efefed;
}

.service-card-seo-body p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #888888;
}

.service-card-seo-body p + p {
  margin-top: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .service-card-seo summary::after {
    transition: none;
  }
}

.service-card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem 1rem;
  padding: 2rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #f8f8f7, #f3f3f1);
  border: 1px solid #ececea;
  min-height: 10rem;
}

.service-card-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.65rem;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  opacity: 1;
  transition: opacity 300ms ease, transform 300ms ease;
}

.service-card:hover .service-card-image img {
  opacity: 1;
  transform: scale(1.02);
}

/* ── Process Section ── */
.process-section {
  background:
    radial-gradient(circle at 28% 0%, rgba(77, 131, 246, 0.16), transparent 32rem),
    radial-gradient(circle at 82% 100%, rgba(77, 131, 246, 0.11), transparent 28rem),
    radial-gradient(circle at 50% 50%, rgba(77, 131, 246, 0.04), transparent 45rem),
    #111111;
}

.process-card {
  padding: 1.75rem;
  border-radius: 1.2rem;
  background: linear-gradient(155deg, rgba(77, 131, 246, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(132, 169, 255, 0.14);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.process-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(155deg, rgba(77, 131, 246, 0.1), rgba(255, 255, 255, 0.06));
  border-color: rgba(160, 188, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(77, 131, 246, 0.08),
    0 20px 48px -16px rgba(77, 131, 246, 0.18);
}

.process-step {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #e4ebff;
  margin-bottom: 1rem;
}

.process-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(198, 210, 245, 0.78);
}

/* ── Pricing Cards ── */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid #e6e6e2;
  border-radius: 2rem;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.03), 0 16px 40px rgba(18, 18, 18, 0.05);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(18, 18, 18, 0.08);
}

.pricing-recommended {
  border-color: #dfe7fb;
  background: linear-gradient(180deg, rgba(247, 249, 255, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 0 0 1px rgba(77, 131, 246, 0.1), 0 24px 64px -12px rgba(77, 131, 246, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: #4d83f6;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(77, 131, 246, 0.3);
}

.pricing-tier {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #121212;
}

.pricing-desc {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #767676;
}

.pricing-price {
  margin-top: 1.25rem;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #121212;
}

.pricing-features {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid #ececea;
  font-size: 0.92rem;
  font-weight: 600;
  color: #555555;
}

.pricing-check {
  width: 1.1rem;
  height: 1.1rem;
  color: #4d83f6;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  min-height: 3.1rem;
  padding: 0.72rem 1.15rem;
  border-radius: 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 1px solid #e0e0dc;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.pricing-cta:hover {
  transform: translateY(-1px);
  border-color: #cbcbc6;
}

.pricing-cta-brand {
  border-color: #4d83f6;
  background: #4d83f6;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(77, 131, 246, 0.25);
}

.pricing-cta-brand:hover {
  background: #4376df;
  border-color: #4376df;
}

/* ── Tarifs : mise en page carte principale + contact (clair) ── */
.pricing-layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .pricing-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 20rem);
    gap: 1.75rem;
  }
}

.pricing-hero-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e6e6e2;
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.03), 0 18px 50px rgba(18, 18, 18, 0.06);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease;
}

.pricing-hero-card:hover {
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04), 0 22px 56px rgba(18, 18, 18, 0.08);
}

.pricing-hero-top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem 1.75rem 0;
}

@media (min-width: 768px) {
  .pricing-hero-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.pricing-hero-intro {
  min-width: 0;
  flex: 1;
}

.pricing-hero-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #121212;
}

.pricing-hero-lead {
  margin: 0.65rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #767676;
}

.pricing-segment {
  display: flex;
  flex-shrink: 0;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: #ececeb;
  border: 1px solid #e0e0dc;
}

.pricing-segment-btn {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #767676;
  background: transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.pricing-segment-btn:hover {
  color: #121212;
}

@media (max-width: 767.98px) {
  .pricing-segment {
    width: 100%;
    align-self: stretch;
  }

  .pricing-segment-btn {
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }
}

.pricing-segment-btn.is-active {
  background: #ffffff;
  color: #121212;
  box-shadow: 0 1px 3px rgba(18, 18, 18, 0.08);
}

.pricing-hero-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.pricing-included-label {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.pricing-hero-features {
  display: grid;
  gap: 0.55rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .pricing-hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pricing-hero-features li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.55;
  color: #4a4a4a;
}

.pricing-hero-features li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: #c8c8c4;
  content: "";
}

.pricing-hero-foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-top: auto;
  padding: 1.25rem 1.75rem 1.5rem;
  background: #f3f3f1;
}

@media (min-width: 640px) {
  .pricing-hero-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
  }
}

.pricing-hero-ratings {
  min-width: 0;
  flex: 1 1 auto;
}

.pricing-hero-price-wrap {
  min-width: 0;
  flex-shrink: 0;
  text-align: right;
  align-self: flex-end;
}

@media (min-width: 640px) {
  .pricing-hero-price-wrap {
    align-self: center;
  }
}

.pricing-hero-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.pricing-hero-amount {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #121212;
}

.pricing-hero-period {
  font-size: 0.82rem;
  color: #767676;
}

.pricing-hero-cta {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #e0e0dc;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #121212;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.pricing-hero-cta:hover {
  transform: translateY(-1px);
  border-color: #cbcbc6;
  box-shadow: 0 6px 20px rgba(18, 18, 18, 0.07);
}

.pricing-hero-cta-icon {
  width: 1rem;
  height: 1rem;
}

.pricing-contact-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e6e6e2;
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.03), 0 14px 40px rgba(18, 18, 18, 0.05);
}

.pricing-contact-top {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.75rem 1.85rem;
}

.pricing-contact-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #121212;
}

.pricing-contact-lead {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #767676;
}

.pricing-contact-lead--follow {
  margin-top: 0.65rem;
}

.pricing-contact-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  min-height: 2.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #e0e0dc;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  color: #121212;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.pricing-contact-call:hover {
  transform: translateY(-1px);
  border-color: #cbcbc6;
}

.pricing-contact-call-icon {
  width: 1rem;
  height: 1rem;
}

.pricing-contact-mail {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1.75rem 1.5rem;
  background: #f3f3f1;
}

.pricing-contact-mail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  max-width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #e0e0dc;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #121212;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.pricing-contact-mail-cta:hover {
  transform: translateY(-1px);
  border-color: #cbcbc6;
  box-shadow: 0 6px 18px rgba(18, 18, 18, 0.06);
}

.pricing-contact-mail-cta-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Bulle chat (autres pages, ex. index-hero-appear) */
.chat-bubble {
  cursor: pointer;
  width: 3.65rem;
  height: 3.65rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(77, 131, 246, 0.22);
  background: linear-gradient(165deg, #f2f5fd 0%, #e6edfc 55%, #dce6fa 100%);
  box-shadow:
    0 2px 10px rgba(77, 131, 246, 0.14),
    0 10px 28px -8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    opacity 0.35s ease,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.chat-bubble:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 131, 246, 0.38);
  box-shadow:
    0 6px 22px rgba(77, 131, 246, 0.22),
    0 18px 40px -10px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.chat-bubble:active {
  transform: translateY(-1px) scale(0.97);
}

.chat-bubble:focus {
  outline: none;
}

.chat-bubble:focus-visible {
  outline: 2px solid #4d83f6;
  outline-offset: 3px;
}

.chat-bubble-icon-flip {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleX(-1);
}

.chat-bubble-neutral-icon {
  width: 1.65rem;
  height: 1.65rem;
  color: #4d83f6;
  stroke-width: 2;
}

@media (prefers-reduced-motion: reduce) {
  .chat-bubble {
    transition: opacity 0.35s ease;
  }

  .chat-bubble:hover,
  .chat-bubble:active {
    transform: none;
  }
}

.chat-widget {
  transition: opacity 0.4s ease;
}

/* Carte type « badge » : photo à cheval sur le bord supérieur, fond blanc, couleurs marque sur le CTA */
.chat-welcome-panel {
  position: relative;
  width: min(calc(100vw - 3rem), 18.5rem);
  margin-top: 2.35rem;
  padding: 2.85rem 1.35rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid #e5e5e1;
  background: #ffffff;
  text-align: center;
  box-shadow:
    0 16px 48px -12px rgba(18, 18, 18, 0.18),
    0 6px 20px rgba(18, 18, 18, 0.06);
}

.chat-welcome-avatar-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  border-radius: 999px;
  border: 3px solid #ffffff;
  background: #f5f5f3;
  box-shadow: 0 6px 20px rgba(18, 18, 18, 0.12);
  transform: translate(-50%, -50%);
}

.chat-welcome-avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-welcome-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #9a9a9a;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.chat-welcome-close:hover {
  background: #f5f5f3;
  color: #121212;
}

.chat-welcome-close-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.chat-welcome-heading {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #121212;
}

.chat-welcome-copy {
  margin: 0.55rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #767676;
}

.chat-welcome-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 1.1rem;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 0.85rem;
  background: #4d83f6;
  color: #ffffff;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 4px 14px rgba(77, 131, 246, 0.35);
  transition:
    transform 0.16s ease,
    background-color 0.16s ease,
    box-shadow 0.16s ease;
}

.chat-welcome-cta:hover {
  background: #4376df;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 8px 20px rgba(77, 131, 246, 0.38);
}

.chat-welcome-cta:focus {
  outline: none;
}

.chat-welcome-cta:focus-visible {
  outline: 2px solid #4d83f6;
  outline-offset: 2px;
}

.chat-welcome-cta-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .chat-welcome-cta {
    transition: background-color 0.16s ease, box-shadow 0.16s ease;
  }

  .chat-welcome-cta:hover {
    transform: none;
  }
}

/* Conteneur : pas de transform ici (évite soucis flex + avatar en absolute) */
.chat-welcome:not([hidden]) {
  display: block;
}

.chat-welcome:not([hidden]) .chat-welcome-panel {
  animation: chatWelcomePanelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes chatWelcomePanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-welcome:not([hidden]) .chat-welcome-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.site-footer {
  background: #0f0f0f;
}

.footer-top,
.footer-bottom,
.footer-legal,
.footer-logo {
  display: flex;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  align-items: start;
  gap: 4.5rem;
}

.footer-brand-block {
  max-width: 16rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 1.75rem;
}

.footer-claim {
  font-size: clamp(1.1rem, 1.75vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #ffffff;
}

.footer-claim-sub {
  display: block;
  margin-top: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
  align-items: center;
  margin-top: 0;
}

.footer-logo-image {
  display: block;
  height: 2.25rem;
  width: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(8rem, 1fr));
  gap: 2.5rem;
}

.footer-col {
  min-width: 0;
}

.footer-heading {
  margin-bottom: 1.05rem;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-col a,
.footer-bottom p,
.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.footer-col a {
  display: block;
  margin-top: 0.95rem;
  transition: color 160ms ease;
}

.footer-col .footer-link-soon {
  display: block;
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.84rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  cursor: default;
}

.footer-link-with-icon {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.footer-col a:hover,
.footer-legal a:hover {
  color: #ffffff;
}

/* Tarifs → FAQ : bandeau blog (3 articles) */
.blog-bridge {
  position: relative;
  overflow: hidden;
  background: #121212;
  color: #fbfbfa;
}

.blog-bridge::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 85% 0%, rgba(77, 131, 246, 0.18) 0%, transparent 55%);
  pointer-events: none;
  content: "";
}

.blog-bridge-wrap {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  max-width: 72rem;
  /* Aligné sur les sections py-20 (~5rem) du reste de la page */
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .blog-bridge-wrap {
    padding: 5rem 2.5rem;
  }
}

.blog-bridge-header {
  margin-bottom: 2rem;
}

.blog-bridge-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .blog-bridge-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.blog-bridge-title {
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #ffffff;
}

.blog-bridge-lead {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(251, 251, 250, 0.62);
}

.blog-bridge-all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.blog-bridge-all:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.blog-bridge-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .blog-bridge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.blog-bridge-grid > li {
  min-width: 0;
}

.blog-bridge-card {
  display: flex;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
  padding: 1.2rem 1.25rem 1.35rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.blog-bridge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.blog-bridge-card-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(251, 251, 250, 0.45);
}

.blog-bridge-card-title {
  margin: 0.5rem 0 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #ffffff;
}

.blog-bridge-card-excerpt {
  margin: 0.55rem 0 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(251, 251, 250, 0.65);
}

.blog-bridge-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #7ea8fa;
}

.blog-bridge-card:hover .blog-bridge-card-more {
  color: #a8c4fc;
}

.blog-bridge-card-more-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.blog-bridge-card:hover .blog-bridge-card-more-icon {
  transform: translateX(3px);
}

.footer-divider {
  height: 1px;
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
}

.footer-legal {
  gap: 2rem;
}

@media (max-width: 767.98px) {
  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-bottom > div {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }

  .footer-bottom .footer-country-wrap {
    display: none !important;
  }

  .footer-grid {
    display: none !important;
  }

  .footer-brand-block {
    display: none !important;
  }

  .footer-top {
    display: none !important;
  }

  .site-footer > div {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .footer-divider {
    display: none;
  }

  .footer-bottom {
    padding-top: 0;
  }
}

/* ── Notes clients (Trustpilot / Google) : icône + étoiles + note type « Based on X reviews » ── */
.rating-showcase-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .rating-showcase-row {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2.25rem;
  }
}

.rating-block {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  width: 100%;
  max-width: 20rem;
}

@media (min-width: 640px) {
  .rating-block {
    flex: 1 1 0;
    max-width: none;
    gap: 1rem;
  }
}

@media (max-width: 639.98px) {
  .rating-block {
    margin-inline: auto;
  }
}

.rating-block-logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 0.7rem;
  border: 1px solid #e8e8e4;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
}

.rating-block-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.14rem;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  line-height: 1;
}

.rating-star--full {
  color: #121212;
}

.rating-star-partial {
  position: relative;
  display: inline-block;
  width: 0.88rem;
  height: 0.88rem;
  flex-shrink: 0;
  font-size: 0.88rem;
  line-height: 1;
}

.rating-star-partial-bg {
  position: absolute;
  inset: 0;
  color: #d4d4d0;
  pointer-events: none;
}

.rating-star-partial-fg {
  position: absolute;
  inset: 0;
  max-width: var(--rating-partial, 50%);
  overflow: hidden;
  color: #121212;
  pointer-events: none;
}

.rating-star-partial-fg > span {
  display: inline-block;
}

.rating-scoreline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.rating-score-value {
  font-weight: 700;
  color: #121212;
}

.rating-score-meta {
  font-weight: 400;
  color: #767676;
}

/* Avis intégrés au pied de la carte tarifs (compact, gauche) */
.rating-showcase-row--pricing-foot {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem 1.1rem;
}

.rating-showcase-row--pricing-foot .rating-block {
  flex: 0 1 auto;
  width: auto;
  max-width: none;
  margin-inline: 0;
  gap: 0.55rem;
}

.rating-showcase-row--pricing-foot .rating-block-logo {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.55rem;
}

.rating-showcase-row--pricing-foot .rating-block-logo svg {
  width: 1.2rem;
  height: 1.2rem;
}

.rating-showcase-row--pricing-foot .rating-stars {
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  gap: 0.1rem;
}

.rating-showcase-row--pricing-foot .rating-star-partial {
  width: 0.72rem;
  height: 0.72rem;
  font-size: 0.72rem;
}

.rating-showcase-row--pricing-foot .rating-scoreline {
  font-size: 0.78rem;
  line-height: 1.35;
}

/* ── FAQ : grille 2 colonnes, typo = corps de page (1rem), style discret ── */
.faq-grid {
  display: grid;
  gap: 0.75rem;
  align-items: start;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    column-gap: 1.5rem;
    row-gap: 0.75rem;
  }

  .faq-item summary,
  .faq-item-body {
    font-size: 1.05rem;
  }
}

.faq-item {
  align-self: start;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
}

/* Annule le lift global des cartes (.metric-card:hover, …) */
.faq-item:hover {
  transform: none;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.03), 0 16px 40px rgba(18, 18, 18, 0.05);
  border-color: #e6e6e2;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #121212;
}

.faq-summary-label {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
  text-wrap: pretty;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.faq-item summary:focus {
  outline: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(77, 131, 246, 0.4);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15em;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23666666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item-body {
  padding: 0.35rem 1.25rem 1.15rem;
  font-size: 1rem;
  line-height: 1.625;
  color: #666666;
}

.faq-item-body p {
  margin: 0;
}

.faq-item-body p + p {
  margin-top: 0.65rem;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after {
    transition: none;
  }
}

/* ── Horizontal Stepper ── */
.stepper-tabs-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #f2f2f0;
  border-radius: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.stepper-tabs-container::-webkit-scrollbar {
  display: none;
}

.stepper-tab {
  flex: 1;
  min-width: 140px;
  padding: 0.85rem 1.5rem;
  border-radius: 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #767676;
  text-align: center;
  transition: all 200ms ease;
  white-space: nowrap;
  outline: none;
}

.stepper-tab:hover {
  color: #121212;
}

@media (max-width: 767.98px) {
  .stepper-tabs-container {
    justify-content: flex-start;
  }

  .stepper-tab {
    flex: 0 0 auto;
    min-width: 0;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
  }
}

.stepper-tab.active {
  background: #ffffff;
  color: #121212;
  box-shadow: 0 2px 10px rgba(18, 18, 18, 0.05);
}

.stepper-pane {
  display: none;
  animation: fadeUp 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stepper-pane.active {
  display: block !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stepper-image-wrapper {
  background: linear-gradient(180deg, #f8f8f7, #f3f3f1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #ececea;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 13rem;
}

.stepper-image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.85rem;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  opacity: 1;
}

/* ── Comparison Section (Freelance vs Agence) ── */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid #eaeaea;
  margin: 1rem;
}

@media (min-width: 850px) {
  .comparison-container {
    grid-template-columns: 1.1fr 1.3fr;
    margin: 2rem 0;
    overflow: visible;
    /* To allow the right pane to pop out */
  }
}

.comparison-pane-left {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.comparison-pane-right {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 4px solid #4d83f6;
  /* Bold blue border */
  border-radius: 2rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(77, 131, 246, 0.15);
  margin: -1rem;
  /* Negative margin to pop over the container */
}

@media (max-width: 849px) {
  .comparison-pane-right {
    margin: 0;
    border-radius: 0 0 2rem 2rem;
    border-top: 4px solid #4d83f6;
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: none;
  }
}

.comparison-title-left {
  font-size: 1.8rem;
  font-weight: 800;
  color: #121212;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.comparison-title-right {
  font-size: 1.8rem;
  font-weight: 800;
  color: #121212;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.5;
}

.comparison-icon-x {
  color: #9ca3af;
  background: #f3f4f6;
  border-radius: 50%;
  padding: 0.2rem;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.comparison-icon-check {
  color: #4d83f6;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

/* ── Contact CTA Section ── */
.contact-cta-panel {
  position: relative;
  border-radius: 2rem;
  background: #12141c;
  /* Deep dark ink */
  padding: 4rem 3rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .contact-cta-panel {
    padding: 3rem 2rem;
  }
}

.contact-cta-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(18, 20, 28, 0.2), #12141c),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size:
    auto,
    56px 56px,
    56px 56px;
  pointer-events: none;
  opacity: 0.6;
}

@media (max-width: 1100px) {

  .mock-body,
  .content-grid,
  .insight-layout,
  .footer-top {
    flex-direction: column;
  }

  .mock-sidebar,
  .table-card {
    width: 100%;
  }

  .metric-row,
  .mini-metrics,
  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-top {
    display: flex;
    gap: 2.5rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .footer-grid {
    gap: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    background-size:
      auto,
      36px 36px,
      36px 36px;
  }

  .mock-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-shell {
    padding: 1.4rem;
  }

  .hero-badges {
    gap: 0.65rem;
  }

  .hero-badge {
    min-height: 2.35rem;
    padding: 0.5rem 0.78rem;
    font-size: 0.84rem;
  }

  .hero-badge-icon {
    width: 0.85rem;
    height: 0.85rem;
  }

  .transformation-surface {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .insight-title {
    font-size: 1.6rem;
  }

  .cta-panel {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .footer-brand-block {
    gap: 1.45rem;
  }

  .footer-claim {
    max-width: 16rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }


  .footer-col a {
    margin-top: 0.7rem;
  }

  .footer-bottom,
  .footer-legal {
    gap: 1rem;
  }
}

/* ── Blog articles (pages/blog/*.html) : layout, hero, TOC, prose, composants ── */

/* Breadcrumb */
.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #767676;
}

.blog-breadcrumb a {
  color: #767676;
  text-decoration: none;
  transition: color 160ms ease;
}

.blog-breadcrumb a:hover {
  color: #121212;
}

.blog-breadcrumb-sep {
  color: #c5c5c1;
  font-size: 0.7rem;
}

.blog-breadcrumb-current {
  color: #121212;
  font-weight: 600;
}


/* Article hero */
.blog-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #121212;
}

.blog-chapo {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
  color: #555555;
}

.blog-hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .blog-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 20rem);
    gap: 2.5rem 3rem;
  }
}

.blog-hero-main {
  min-width: 0;
  max-width: 48rem;
}

.blog-hero-art {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .blog-hero-art {
    justify-content: flex-end;
    margin: 0;
  }
}

.blog-hero-art-svg {
  width: 100%;
  max-width: 20rem;
  height: auto;
  display: block;
}

@media (min-width: 1280px) {
  .blog-hero-art-svg {
    max-width: 22.5rem;
  }
}

/* Author bar */
.blog-author-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e1;
}

.blog-author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 2px solid #e5e5e1;
  object-fit: cover;
}

.blog-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #121212;
}

.blog-author-meta {
  font-size: 0.82rem;
  color: #767676;
}

.blog-meta-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #c5c5c1;
  vertical-align: middle;
  margin: 0 0.35rem;
}

/* ── Sticky TOC sidebar ─────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr 16rem;
    gap: 4rem;
  }
}

.blog-toc-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .blog-toc-sidebar {
    display: block;
    position: relative;
  }
}

.blog-toc-sticky {
  position: sticky;
  top: 6rem;
}

.blog-toc-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #767676;
  margin-bottom: 1rem;
}

.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.blog-toc-link {
  display: block;
  padding: 0.4rem 0 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #999999;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
  line-height: 1.45;
}

.blog-toc-link:hover {
  color: #121212;
}

.blog-toc-link.is-active {
  color: #4d83f6;
  font-weight: 600;
}

.blog-toc-link[data-depth="3"] {
  padding-left: 1.5rem;
  font-size: 0.78rem;
}

/* Inline TOC (mobile) */
.blog-toc-inline {
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e5e5e1;
  background: #fbfbfa;
}

@media (min-width: 1024px) {
  .blog-toc-inline {
    display: none;
  }
}

.blog-toc-inline summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: #121212;
}

.blog-toc-inline summary::-webkit-details-marker {
  display: none;
}

.blog-toc-inline summary::after {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23767676" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

.blog-toc-inline[open] summary::after {
  transform: rotate(180deg);
}

.blog-toc-inline-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.blog-toc-inline-list a {
  display: block;
  padding: 0.4rem 0 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #767676;
  text-decoration: none;
  border-left: 2px solid #e5e5e1;
  transition: color 160ms ease, border-color 160ms ease;
}

.blog-toc-inline-list a:hover {
  color: #121212;
  border-left-color: #4d83f6;
}

.blog-toc-inline-list a[data-depth="3"] {
  padding-left: 1.5rem;
  font-size: 0.82rem;
}

/* ── Article prose ─────────────────────────────── */
.blog-prose h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #121212;
  margin: 3.5rem 0 1.25rem;
  scroll-margin-top: 6rem;
}

.blog-prose h2:first-child {
  margin-top: 0;
}

.blog-prose h3 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #121212;
  margin: 2.5rem 0 0.85rem;
  scroll-margin-top: 6rem;
}

.blog-prose p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444444;
  margin: 0 0 1.25rem;
}

.blog-prose strong {
  color: #121212;
  font-weight: 700;
}

.blog-prose a {
  color: #4d83f6;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(77, 131, 246, 0.3);
  transition: text-decoration-color 160ms ease;
}

.blog-prose a:hover {
  text-decoration-color: #4d83f6;
}

.blog-prose ul,
.blog-prose ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

/* Preflight Tailwind enlève les puces sur ul/ol  :  on les rétablit ici */
.blog-prose ul {
  list-style-type: disc;
  list-style-position: outside;
}

.blog-prose ol {
  list-style-type: decimal;
  list-style-position: outside;
}

.blog-prose li {
  font-size: 1rem;
  line-height: 1.75;
  color: #444444;
  margin-bottom: 0.5rem;
  padding-left: 0.35rem;
}

.blog-prose li::marker {
  color: #4d83f6;
}

/* Key Takeaway box */
.blog-takeaway {
  position: relative;
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(77, 131, 246, 0.04), rgba(77, 131, 246, 0.08));
  border: 1px solid rgba(77, 131, 246, 0.15);
}

.blog-takeaway-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4d83f6;
  margin-bottom: 0.75rem;
}

.blog-takeaway p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333333;
  margin: 0;
}

.blog-takeaway p+p {
  margin-top: 0.5rem;
}

/* Blockquote : même fond / bordure que .blog-takeaway + guillemets doubles */
.blog-prose blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(77, 131, 246, 0.04), rgba(77, 131, 246, 0.08));
  border: 1px solid rgba(77, 131, 246, 0.15);
}

.blog-prose blockquote p {
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: #333333;
  margin: 0;
  line-height: 1.65;
}

.blog-prose blockquote p::before {
  content: "\201C";
  margin-right: 0.12em;
}

.blog-prose blockquote p::after {
  content: "\201D";
  margin-left: 0.12em;
}

/* Citation / témoignage type carte : fond blanc, guillemet décoratif, auteur bleu marque */
.blog-prose .blog-quote-card {
  margin: 2rem 0;
  padding: 2rem 2.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e5e1;
  background: #ffffff;
}

.blog-prose .blog-quote-card-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 0.75;
  color: rgba(77, 131, 246, 0.22);
  margin: 0 0 0.85rem;
  user-select: none;
}

.blog-prose .blog-quote-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.blog-prose .blog-quote-card blockquote p {
  font-size: 1.05rem;
  font-weight: 400;
  font-style: normal;
  color: #1e293b;
  margin: 0;
  line-height: 1.55;
}

.blog-prose .blog-quote-card blockquote p::before,
.blog-prose .blog-quote-card blockquote p::after {
  content: none;
}

.blog-prose figcaption.blog-quote-card-author {
  margin: 1.35rem 0 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  color: #4d83f6;
  text-align: left;
}

/* Figure / images */
.blog-figure {
  margin: 2.5rem 0;
}

.blog-figure img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e5e5e1;
}

.blog-figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: #767676;
  text-align: center;
  line-height: 1.5;
}

/* Figure paysage : cadre gris (stage) à hauteur limitée, image centrée ; légende centrée sous le cadre */
.blog-figure.blog-figure--landscape {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
}

.blog-figure.blog-figure--landscape .blog-figure-landscape-stage {
  width: 100%;
  min-height: 10.5rem;
  max-height: 13rem;
  height: clamp(10.5rem, 26vw, 13rem);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 1rem;
  border: 1px solid #e5e5e1;
  background: #eff1f3;
}

.blog-figure.blog-figure--landscape .blog-figure-landscape-stage img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
}

.blog-figure.blog-figure--landscape figcaption {
  margin-top: 0;
  max-width: 42rem;
}

/* Data table  :  corps #fbfbfa comme le header site ; en-tête bandeau bleu marque */
.blog-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: 0.85rem;
  border: 1px solid rgba(229, 229, 225, 0.85);
  background: #fbfbfa;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
}

.blog-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.blog-table thead {
  background: rgba(77, 131, 246, 0.12);
}

.blog-table th {
  padding: 0.95rem 1.2rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: #121212;
  text-align: left;
  border-bottom: 1px solid rgba(77, 131, 246, 0.22);
}

.blog-table td {
  padding: 0.95rem 1.2rem;
  color: #444444;
  border-bottom: 1px solid #ececea;
  line-height: 1.55;
  vertical-align: top;
}

/* Première colonne du corps = th : même séparateur que les td (pas la teinte bleue de l'en-tête) */
.blog-table tbody th {
  border-bottom: 1px solid #ececea;
}

.blog-table tbody tr:last-child td,
.blog-table tbody tr:last-child th {
  border-bottom: none;
}

.blog-table tbody tr {
  background: #fbfbfa;
}

.blog-table tbody tr:hover {
  background: #f5f5f3;
}

/* Points clés (carte bordure gauche + checks) */
.blog-findings {
  margin: 2rem 0;
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  border-radius: 1rem;
  background: rgba(77, 131, 246, 0.06);
  border: 1px solid rgba(77, 131, 246, 0.12);
  border-left: 4px solid #4d83f6;
}

.blog-findings-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #121212;
}

.blog-findings-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-prose ul.blog-findings-list {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.blog-findings-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
  border-bottom: 1px solid rgba(77, 131, 246, 0.08);
}

.blog-findings-list li:first-child {
  padding-top: 0;
}

.blog-findings-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-findings-icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  color: #4d83f6;
}

/* Encadré liste à puces carrées (niveaux de priorité) */
.blog-callout-card {
  margin: 2rem 0;
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  background: rgba(77, 131, 246, 0.07);
  border: 1px solid rgba(77, 131, 246, 0.14);
}

.blog-callout-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-prose ul.blog-callout-list {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.blog-callout-list li {
  position: relative;
  margin: 0;
  padding: 0.65rem 0 0.65rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
  border-bottom: 1px solid rgba(77, 131, 246, 0.1);
}

.blog-callout-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-callout-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.65rem + 0.65em);
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4d83f6;
}

.blog-callout-list .blog-callout-label {
  font-weight: 800;
  color: #121212;
}

/* Bloc schéma barres (Insee ou autre, deux indicateurs indépendants sur une même base) */
.blog-poll-figure {
  margin: 2rem 0;
}

.blog-poll-figure .blog-poll-card {
  margin: 0;
}

.blog-poll-caption {
  margin: 0.6rem auto 0;
  padding: 0 0.15rem;
  max-width: 42rem;
  font-size: 0.8rem;
  line-height: 1.45;
  font-style: italic;
  color: #767676;
  text-align: center;
}

.blog-poll-card {
  margin: 2rem 0;
  padding: 1.5rem 1.45rem 1.4rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: 0 2px 8px rgba(18, 18, 18, 0.05);
}

.blog-poll-title {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e293b;
  line-height: 1.35;
}

.blog-prose .blog-poll-title {
  margin-top: 0;
}

.blog-poll-rows {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.blog-poll-track {
  position: relative;
  min-height: 2.7rem;
  border-radius: 0.65rem;
  background: #f1f5f9;
  overflow: hidden;
}

.blog-poll-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  max-width: 100%;
}

.blog-poll-fill--1 {
  background: #f9e6d3;
}

.blog-poll-fill--2 {
  background: #e2e8f0;
}

.blog-poll-fill--3 {
  background: #d1fae5;
}

.blog-poll-fill--4 {
  background: #e0e7ff;
}

.blog-poll-row-labels {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: 2.7rem;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

.blog-poll-pct {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* Schéma barres vertical : même logique que .blog-poll (indicateurs indépendants, même base 100 %) */
.blog-poll-v-figure {
  margin: 2rem 0;
}

.blog-poll-v-figure .blog-poll-card {
  margin: 0;
}

.blog-poll-v-cols {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.blog-poll-v-col {
  flex: 1 1 7.5rem;
  max-width: 16rem;
  min-width: 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
}

.blog-poll-v-track {
  position: relative;
  width: 100%;
  min-height: 12rem;
  border-radius: 0.65rem;
  background: #f1f5f9;
  overflow: hidden;
}

.blog-poll-v-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0.55rem 0.55rem 0 0;
  min-height: 3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  padding: 0.4rem 0.35rem 0.5rem;
}

.blog-poll-v-pct {
  font-size: clamp(0.8rem, 2.1vw, 0.95rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #1e293b;
  line-height: 1.15;
  text-align: center;
}

.blog-poll-v-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0.35rem;
}

.blog-poll-v-foot .blog-poll-label {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1e293b;
}

/* Donut (une part sur 100 %, complément = reste du cercle) */
.blog-donut-figure {
  margin: 2rem 0;
}

.blog-donut-figure .blog-donut-card {
  margin: 0;
}

.blog-donut-card {
  --blog-donut-pct: 0;
  margin: 2rem 0;
  padding: 1.5rem 1.45rem 1.35rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: 0 2px 8px rgba(18, 18, 18, 0.05);
}

.blog-donut-title {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e293b;
  line-height: 1.35;
}

.blog-prose .blog-donut-title {
  margin-top: 0;
}

.blog-donut-body {
  display: flex;
  justify-content: center;
}

.blog-donut-wrap {
  position: relative;
  width: min(100%, 13.5rem);
  aspect-ratio: 1;
  margin: 0 auto;
}

.blog-donut-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-donut-track {
  stroke: #e2e8f0;
}

.blog-donut-fill {
  stroke: #4d83f6;
  stroke-linecap: round;
  stroke-dasharray: calc(var(--blog-donut-pct) * 100) 100;
}

.blog-donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.blog-donut-value {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  color: #121212;
  line-height: 1;
}

/* Checklist */
.blog-checklist {
  list-style: none;
  padding: 0.35rem 0;
  margin: 1.5rem 0 2rem;
  border: 1px solid rgba(229, 229, 225, 0.85);
  border-radius: 0.9rem;
  background: #fbfbfa;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
}

.blog-prose ul.blog-checklist {
  list-style: none;
}

.blog-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem;
  border-bottom: 1px solid #ececea;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444444;
}

.blog-checklist li:first-child {
  padding-top: 0.75rem;
}

.blog-checklist li:last-child {
  border-bottom: none;
  padding-bottom: 0.75rem;
}

.blog-check-icon {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  color: #4d83f6;
}

/* Téléchargement ressource PDF + carte audit gratuit (même base visuelle) */
.blog-resource-download {
  margin: 2rem 0;
}

.blog-resource-download-card,
.blog-audit-cta-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.35rem 1.4rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(77, 131, 246, 0.22);
  background: linear-gradient(135deg, rgba(77, 131, 246, 0.07), rgba(77, 131, 246, 0.02));
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
}

.blog-resource-download-icon,
.blog-audit-cta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  background: rgba(77, 131, 246, 0.12);
  color: #4d83f6;
}

.blog-resource-download-icon i,
.blog-resource-download-icon svg,
.blog-audit-cta-icon i,
.blog-audit-cta-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 2;
}

.blog-resource-download-body,
.blog-audit-cta-body {
  min-width: 0;
  flex: 1;
}

.blog-resource-download-kicker,
.blog-audit-cta-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4d83f6;
}

.blog-prose .blog-resource-download-title,
.blog-prose .blog-audit-cta-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #121212;
}

.blog-resource-download-desc,
.blog-audit-cta-lead {
  margin: 0.5rem 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #444444;
}

.blog-resource-download-meta {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: #767676;
}

.blog-resource-download-cta,
.blog-audit-cta-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0 1.15rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: #4d83f6;
  text-decoration: none;
  border: 1px solid rgba(45, 95, 210, 0.35);
  box-shadow: 0 1px 2px rgba(18, 18, 18, 0.06);
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.blog-resource-download-cta {
  margin-top: 1rem;
}

.blog-resource-download-cta:hover,
.blog-audit-cta-submit:hover {
  background: #3d75eb;
  box-shadow: 0 3px 12px rgba(53, 104, 214, 0.28);
  transform: translateY(-1px);
}

.blog-prose a.blog-resource-download-cta,
.blog-prose a.blog-resource-download-cta:hover,
.blog-prose button.blog-audit-cta-submit,
.blog-prose button.blog-audit-cta-submit:hover {
  color: #ffffff;
  text-decoration: none;
  text-underline-offset: 0;
}

.blog-resource-download-cta i,
.blog-resource-download-cta svg,
.blog-audit-cta-submit i,
.blog-audit-cta-submit svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.25;
}

.blog-audit-cta-submit {
  font-family: inherit;
  cursor: pointer;
}

/* Audit gratuit : formulaire URL → page contact (GET) */
.blog-audit-cta {
  margin: 2rem 0;
}

.blog-audit-cta-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.blog-audit-cta-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #767676;
}

.blog-audit-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .blog-audit-cta-row {
    flex-direction: row;
    align-items: stretch;
    gap: 0.65rem;
  }

  .blog-audit-cta-row .blog-audit-cta-submit {
    flex-shrink: 0;
    min-width: 11rem;
  }
}

.blog-prose .blog-audit-cta-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #121212;
  background: #fbfbfa;
  border: 1px solid #e5e5e1;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.blog-prose .blog-audit-cta-input::placeholder {
  color: #a3a3a3;
}

.blog-prose .blog-audit-cta-input:focus {
  outline: none;
  border-color: rgba(77, 131, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(77, 131, 246, 0.15);
}

/* Chiffre clé / stat mise en avant (court, avec source)
   Les règles sont sous .blog-prose .blog-stat-highlight pour battre .blog-prose p (sinon taille/couleur du chiffre restent à 1rem / #444). */
.blog-stat-highlight {
  margin: 2rem 0;
}

.blog-prose .blog-stat-highlight-card {
  margin: 0;
  padding: 1.5rem 1.4rem 1.35rem;
  text-align: left;
  border-radius: 0.9rem;
  border: 1px solid rgba(229, 229, 225, 0.85);
  background: #fbfbfa;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
}

.blog-prose .blog-stat-highlight-card > p {
  margin: 0;
}

.blog-prose .blog-stat-highlight .blog-stat-highlight-value {
  margin: 0;
  font-size: clamp(2.85rem, 9vw, 4.15rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #4d83f6;
}

.blog-prose .blog-stat-highlight .blog-stat-highlight-label {
  margin: 0.65rem 0 0;
  max-width: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #767676;
  line-height: 1.45;
}

.blog-prose .blog-stat-highlight .blog-stat-highlight-context {
  margin: 0.5rem 0 0;
  max-width: none;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #444444;
  text-align: left;
  text-wrap: balance;
}

/* Source : pas de double encadré type blog-stats-source (bordure bleue) dans la carte */
.blog-prose .blog-stat-highlight .blog-stats-source {
  margin: 1.1rem 0 0;
  padding: 0.9rem 0 0;
  text-align: left;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #767676;
  border: none;
  border-radius: 0;
  border-top: 1px solid #ececea;
  background: transparent;
  border-left: none;
}

.blog-prose .blog-stat-highlight .blog-stats-source a {
  color: #4d83f6;
  font-weight: 600;
}

/* Citation / extrait de source externe (figure + blockquote, pas le témoignage carte) */
.blog-prose figure.blog-source-excerpt {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem 1.3rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(229, 229, 225, 0.85);
  border-left: 4px solid #767676;
  background: #fbfbfa;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
}

.blog-prose .blog-source-excerpt blockquote.blog-source-excerpt-quote {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.blog-prose .blog-source-excerpt blockquote.blog-source-excerpt-quote p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 400;
  font-style: italic;
  color: #333333;
  line-height: 1.65;
}

.blog-prose .blog-source-excerpt blockquote.blog-source-excerpt-quote p::before,
.blog-prose .blog-source-excerpt blockquote.blog-source-excerpt-quote p::after {
  content: none;
}

figure.blog-source-excerpt figcaption.blog-source-excerpt-caption {
  margin: 1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid #ececea;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #767676;
  text-align: left;
}

.blog-source-excerpt-caption cite {
  font-style: normal;
  font-weight: 700;
  color: #121212;
}

.blog-source-excerpt-caption .blog-source-excerpt-sep {
  opacity: 0.45;
  user-select: none;
}

.blog-source-excerpt-caption time {
  color: #767676;
}

.blog-prose .blog-source-excerpt-caption a.blog-source-excerpt-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 600;
  font-size: 0.84rem;
  color: #4d83f6;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(77, 131, 246, 0.35);
}

.blog-prose .blog-source-excerpt-caption a.blog-source-excerpt-link:hover {
  color: #3d75eb;
  text-decoration-color: rgba(61, 117, 235, 0.5);
}

@media (min-width: 640px) {
  .blog-source-excerpt-caption-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
  }

  .blog-prose .blog-source-excerpt-caption a.blog-source-excerpt-link {
    margin-top: 0;
    margin-left: auto;
  }
}

/* Avant / après (deux colonnes) */
.blog-compare {
  margin: 2rem 0;
}

.blog-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .blog-compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
    align-items: stretch;
  }
}

.blog-compare-card {
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(229, 229, 225, 0.95);
  background: #fbfbfa;
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
}

.blog-compare-card--before {
  border-left: 4px solid #c5c5c1;
}

.blog-compare-card--after {
  border-left: 4px solid #4d83f6;
  background: linear-gradient(135deg, rgba(77, 131, 246, 0.04), rgba(77, 131, 246, 0.02));
}

.blog-compare-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #767676;
}

.blog-compare-card--after .blog-compare-label {
  color: #4d83f6;
}

.blog-compare-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
}

.blog-prose .blog-compare-body {
  margin-bottom: 0;
}

/* Fil d’étapes (liste numérotée stylée) */
.blog-steps {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  counter-reset: blog-step;
}

.blog-prose ol.blog-steps {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.blog-steps > li {
  position: relative;
  counter-increment: blog-step;
  margin: 0 0 1.35rem;
  padding: 0 0 0 3.15rem;
  min-height: 2rem;
}

.blog-steps > li:last-child {
  margin-bottom: 0;
}

.blog-steps > li::before {
  content: counter(blog-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
  background: #4d83f6;
  border-radius: 0.65rem;
  box-shadow: 0 2px 8px rgba(77, 131, 246, 0.25);
}

.blog-steps-title {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #121212;
  line-height: 1.35;
}

.blog-steps-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
}

.blog-prose .blog-steps-desc {
  margin-bottom: 0;
}

/* Piège / erreur fréquente (ton ambre, distinct du callout bleu) */
.blog-pitfall {
  margin: 2rem 0;
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.06), rgba(180, 83, 9, 0.03));
  border: 1px solid rgba(180, 83, 9, 0.22);
}

.blog-pitfall-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a3412;
}

.blog-pitfall-label svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  stroke-width: 2.5;
}

.blog-pitfall p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
}

.blog-pitfall p + p {
  margin-top: 0.75rem;
}

/* À noter (ton jaune, complément du piège ambre) */
.blog-note {
  margin: 2rem 0;
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.14), rgba(250, 204, 21, 0.06));
  border: 1px solid rgba(202, 138, 4, 0.35);
}

.blog-note-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #854d0e;
}

.blog-note-label svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  stroke-width: 2.5;
}

.blog-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
}

.blog-note p + p {
  margin-top: 0.75rem;
}

/* Le saviez-vous ? (ton sarcelle / curiosité, distinct du jaune « À noter ») */
.blog-trivia {
  margin: 2rem 0;
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(20, 184, 166, 0.05));
  border: 1px solid rgba(15, 118, 110, 0.28);
}

.blog-trivia-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #0f766e;
}

.blog-trivia-label svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  stroke-width: 2.5;
}

.blog-trivia p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
}

.blog-trivia p + p {
  margin-top: 0.75rem;
}

/* Tableau comparatif court (3 colonnes, pas de min-width forcé large) */
.blog-table-wrap.blog-table-wrap--compare {
  margin: 2rem 0;
}

.blog-table.blog-table--compare {
  min-width: 0;
  font-size: 0.9rem;
}

.blog-table.blog-table--compare th:first-child,
.blog-table.blog-table--compare td:first-child {
  font-weight: 700;
  color: #121212;
  width: 34%;
}

.blog-table.blog-table--compare td:not(:first-child) {
  color: #555555;
}

/* Tableau comparatif « vs » : fond blanc, lignes horizontales, icônes ✓ / × */
.blog-table-wrap.blog-table-wrap--vs {
  margin: 2rem 0;
  border: 1px solid #ececea;
  background: #ffffff;
  box-shadow: none;
}

.blog-table.blog-table--vs {
  min-width: 0;
  font-size: 0.92rem;
}

.blog-table.blog-table--vs thead {
  background: transparent;
}

.blog-table.blog-table--vs th {
  padding: 1.05rem 1.15rem;
  font-size: 0.9rem;
  letter-spacing: normal;
  border-bottom: 1px solid #ececea;
  background: transparent;
}

.blog-table.blog-table--vs thead th:nth-child(2) {
  font-weight: 700;
  color: #121212;
}

.blog-table.blog-table--vs thead th:nth-child(3) {
  font-weight: 700;
  color: #4d83f6;
}

.blog-table.blog-table--vs tbody th[scope="row"] {
  padding: 1.15rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: left;
  vertical-align: top;
  color: #0f2744;
  border-bottom: 1px solid #ececea;
  background: #ffffff;
}

.blog-table.blog-table--vs td {
  padding: 1.15rem 1.15rem;
  vertical-align: top;
  border-bottom: 1px solid #ececea;
  background: #ffffff;
  color: #0f2744;
}

.blog-table.blog-table--vs tbody tr:last-child th,
.blog-table.blog-table--vs tbody tr:last-child td {
  border-bottom: none;
}

.blog-table.blog-table--vs tbody tr:hover th,
.blog-table.blog-table--vs tbody tr:hover td {
  background: #fafafa;
}

.blog-table-vs-cell {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.blog-table.blog-table--vs td:nth-child(2) {
  color: #767676;
  font-weight: 400;
}

.blog-table.blog-table--vs td:nth-child(2) .blog-table-vs-cell {
  color: inherit;
}

.blog-table.blog-table--vs td:nth-child(3) {
  font-weight: 400;
}

.blog-table-vs-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.blog-table-vs-icon--neg {
  color: #c5c5c1;
}

.blog-table-vs-icon--pos {
  color: #4d83f6;
}

/* Vidéo intégrée (16/9) */
.blog-figure.blog-video-figure {
  margin: 2.5rem 0;
}

.blog-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e5e5e1;
  background: #0b0c10;
  box-shadow: 0 2px 12px rgba(18, 18, 18, 0.08);
}

.blog-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-figure.blog-video-figure figcaption {
  margin-top: 0.65rem;
}

/* Code : inline dans le corps (surchargé dans pre.blog-code-block) */
.blog-prose code {
  font-size: 0.88em;
  font-weight: 500;
  padding: 0.12em 0.4em;
  border-radius: 0.35rem;
  background: rgba(18, 18, 18, 0.07);
  color: #1e293b;
  word-break: break-word;
}

/* Snippet multiligne */
.blog-code-figure {
  margin: 2rem 0;
}

.blog-code-caption {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #767676;
  line-height: 1.45;
}

.blog-prose pre.blog-code-block {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 0.85rem;
  background: #0b0c10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: auto;
  overflow-y: auto;
  max-height: min(70vh, 26rem);
  -webkit-overflow-scrolling: touch;
  tab-size: 2;
  font-size: 0.82rem;
  line-height: 1.55;
}

.blog-prose pre.blog-code-block:focus-visible {
  outline: 2px solid rgba(77, 131, 246, 0.55);
  outline-offset: 2px;
}

pre.blog-code-block code {
  display: block;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: inherit;
  font-weight: 400;
  color: #e8e8e6;
  background: transparent;
  padding: 0;
  border-radius: 0;
  white-space: pre;
  word-break: normal;
  overflow-wrap: normal;
}

/* Share bar */
.blog-share-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  border: 1px solid #e5e5e1;
  background: #ffffff;
  color: #767676;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.blog-share-btn:hover {
  color: #121212;
  border-color: #d1d1ce;
  background: #f5f5f3;
}

.blog-share-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Author card (bottom) */
.blog-author-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid #e5e5e1;
  background: #fbfbfa;
}

.blog-author-card-body {
  flex: 1;
  min-width: 0;
}

.blog-author-card-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #e5e5e1;
  flex-shrink: 0;
}

.blog-author-card-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.35rem;
  row-gap: 0.15rem;
}

.blog-author-card-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #121212;
}

.blog-author-card-sep {
  font-size: 0.85rem;
  color: #767676;
  user-select: none;
}

.blog-author-card-role {
  font-size: 0.85rem;
  color: #767676;
}

.blog-author-card-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555555;
  margin-top: 0.65rem;
}

.blog-prose p.blog-author-card-bio {
  margin-bottom: 0;
}

/* Related articles */
.blog-related-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid #e5e5e1;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.blog-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.06);
  border-color: #d1d1ce;
}

.blog-related-card-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4d83f6;
}

.blog-related-card-title {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #121212;
}

.blog-related-card-excerpt {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #767676;
}

.blog-related-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4d83f6;
}

.blog-related-card:hover .blog-related-card-more i {
  transform: translateX(3px);
}

.blog-related-card-more i {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 160ms ease;
}

/* TOC CTA card */
.blog-toc-cta {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(155deg, rgba(77, 131, 246, 0.06), rgba(77, 131, 246, 0.02));
  border: 1px solid rgba(77, 131, 246, 0.12);
}

.blog-toc-cta p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #555555;
  margin: 0 0 0.85rem;
}

.blog-toc-cta p strong {
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  color: #121212;
}

.blog-toc-cta .action-brand {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
}

/* Section divider in article */
.blog-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e5e1 20%, #e5e5e1 80%, transparent);
  margin: 3rem 0;
}

/* Reading progress bar */
.blog-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #4d83f6;
  z-index: 50;
  transition: width 80ms linear;
}


/* Blog : source explicite sous les blocs chiffrés (articles .blog-prose) */
.blog-prose .blog-stats-source {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #767676;
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0.65rem 0.85rem;
  border-left: 3px solid #4d83f6;
  background: rgba(77, 131, 246, 0.06);
  border-radius: 0 0.5rem 0.5rem 0;
}

.blog-prose .blog-stats-source a {
  color: #3d6fd4;
  word-break: break-word;
}

/* Listes numérotées du corps d'article : chiffres des marqueurs un peu plus marqués */
.blog-prose ol li::marker {
  font-weight: 600;
}

/* ── Blog : mini-glossaire repliable (même enveloppe que .blog-takeaway « En bref ») ── */
.blog-prose .blog-glossary-panel p.blog-glossary-lead {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333333;
}

.blog-glossary {
  margin: 1.25rem 0 0;
  padding: 0;
}

.blog-prose .blog-glossary {
  margin-top: 1.25rem;
}

.blog-glossary dt {
  margin: 1rem 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #121212;
}

.blog-glossary dt:first-of-type {
  margin-top: 0;
}

.blog-glossary dd {
  margin: 0;
  padding: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #333333;
  border-bottom: 1px solid rgba(77, 131, 246, 0.08);
}

.blog-glossary dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

details.blog-glossary-details.blog-takeaway summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
}

details.blog-glossary-details.blog-takeaway summary::-webkit-details-marker {
  display: none;
}

details.blog-glossary-details.blog-takeaway summary::after {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.35rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%234d83f6" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

details.blog-glossary-details.blog-takeaway[open] summary::after {
  transform: rotate(180deg);
}

.blog-glossary-summary-stack {
  flex: 1;
  min-width: 0;
}

.blog-prose details.blog-glossary-details.blog-takeaway summary .blog-glossary-summary-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.02em;
  color: #333333;
  text-wrap: pretty;
  hyphens: auto;
  scroll-margin-top: 6rem;
}

.blog-glossary-panel {
  margin: 0.85rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(77, 131, 246, 0.15);
}

/* ── Blog articles : bloc offre (bandeau bleu avant la FAQ) ── */
.blog-offer-block {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 2.75rem 0;
  padding: 2.5rem 1.25rem 2.65rem;
  border-radius: 1rem;
  text-align: center;
  background: #3b7aed;
  background: linear-gradient(180deg, #4a84f6 0%, #4580f2 42%, #4178ea 100%);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 6px 28px rgba(53, 104, 214, 0.2),
    0 1px 3px rgba(18, 18, 18, 0.05);
}

@media (min-width: 640px) {
  .blog-offer-block {
    padding: 2.65rem 2rem 2.85rem;
  }
}

.blog-offer-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 0% 100%, rgba(25, 65, 168, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 85% 60% at 100% 8%, rgba(32, 72, 178, 0.18) 0%, transparent 48%),
    radial-gradient(circle at 18% 32%, rgba(28, 62, 160, 0.1) 0%, transparent 38%),
    radial-gradient(circle at 88% 72%, rgba(36, 78, 185, 0.11) 0%, transparent 32%),
    radial-gradient(circle at 52% 48%, rgba(20, 55, 150, 0.06) 0%, transparent 28%);
}

.blog-offer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 0.25rem;
}

.blog-prose .blog-offer-inner .blog-offer-badge {
  display: inline-block;
  margin: 0 0 1.15rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  background: rgba(232, 242, 255, 0.97);
  color: #1e4db8;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 2px rgba(18, 18, 18, 0.04);
}

.blog-prose .blog-offer-title {
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  text-wrap: balance;
}

.blog-prose .blog-offer-sub {
  margin: 1rem auto 0;
  max-width: none;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.blog-offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.6rem;
  min-height: 3.25rem;
  padding: 0 2rem;
  border-radius: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  background: #ffffff;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 8px rgba(18, 18, 18, 0.08);
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.blog-offer-cta:hover {
  transform: translateY(-1px);
  background: #fafbfc;
  box-shadow: 0 4px 16px rgba(18, 18, 18, 0.1);
}

.blog-prose a.blog-offer-cta,
.blog-prose a.blog-offer-cta:hover {
  color: #111827;
  text-decoration: none;
  text-underline-offset: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  details.blog-glossary-details.blog-takeaway summary::after {
    transition: none;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .hero-preview.is-visible .mock-app {
    animation: none !important;
  }

  .metric-card,
  .chart-card,
  .table-card,
  .feature-card,
  .transformation-card,
  .offer-card,
  .deliverable-card,
  .faq-item,
  .action-dark,
  .action-light,
  .action-ghost,
  .action-brand {
    transition: none !important;
  }
}